Remove inaccurate (misattributed) copyright notices
authorJosh Triplett <josh@joshtriplett.org>
Thu, 27 Jul 2017 00:19:24 +0000 (17:19 -0700)
committerJosh Triplett <josh@joshtriplett.org>
Thu, 27 Jul 2017 00:19:24 +0000 (17:19 -0700)
LICENSE-MIT and one source file contain inaccurate copyright notices of
the form "Copyright (c) (years) The Rust Project Developers", which
implies that an entity called "The Rust Project Developers" holds
copyrights in Rust. Rust contributors retain their copyrights, and do
not assign them to anyone by contributing.  Remove the inaccurate
notices.

LICENSE-MIT
src/cargo/util/lev_distance.rs

index 39d4bdb5acd313c1a92dbeaa1c379aaf0596a315..31aa79387f27e730e33d871925e152e35e428031 100644 (file)
@@ -1,5 +1,3 @@
-Copyright (c) 2014 The Rust Project Developers
-
 Permission is hereby granted, free of charge, to any
 person obtaining a copy of this software and associated
 documentation files (the "Software"), to deal in the
index 4ae55a9ebc70a6822a33efdbb56fee871bf0b792..d55a3443a54a9f6da43607404313724afb14e0f0 100644 (file)
@@ -1,13 +1,3 @@
-// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
-// file at the top-level directory of this distribution and at
-// http://rust-lang.org/COPYRIGHT.
-//
-// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-// option. This file may not be copied, modified, or distributed
-// except according to those terms.
-
 use std::cmp;
 
 pub fn lev_distance(me: &str, t: &str) -> usize {